Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

158
Visualizações
Where can i find the code "behind the hood" of JS array methods?

I would like to know how array methods are built-in (the source code), for example this prototype todos() is how i imagine the every() method works behind the scenes, i would like to find that documentation.

Array.prototype.todos = function(fn) {
    for(let item of this) {
        if(!fn(item)) {
            return false
        }
    }
    return true
}

const result = [1, 2, 3].todos(x => x < 10)
console.log(result)

about 4 years ago · Santiago Gelvez
1 Respostas
Responde à pergunta

0

The contract for exactly how the Javascript built-ins should behave is outlined in the ECMAScript specification.

There are a number of different Javascript engines, each with their own specific implementation of ECMAScript. The most common Javascript engines are:

  • V8 (Chrome, Node, Edge, Android, Opera, other Chromium-based browsers)
  • SpiderMonkey (Firefox)
  • JavaScriptCore (Safari)
about 4 years ago · Santiago Gelvez Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda